home *** CD-ROM | disk | FTP | other *** search
- * orders.prg
- public ans
-
- store .t. to t
- store .f. to f
- set talk off
- set procedure to CUSTIO
-
- use custs
- store T to work
- store F to again
- do while work
- if .not. again
- clear
- endif
- store F to again
- stor ' ' to ans
- @ 5,27 say "A -- Add a customer"
- @ 7,27 say "L -- List customers"
- @ 9,27 say "M -- Modify a customer"
- @ 11,27 say "P -- Print a customer"
- @ 13,27 say "Q -- Quit"
- @ 17,27 get ans
- @ 17,32 say "choose an option"
- read
- store upper(ans) to ans
- do CUSTSEL
- enddo
- close procedure
- set talk on
- P